return "GO TO FRAME X" & RETURN & RETURN & "Moves the playback head to the chosen frame when the user clicks on the sprite" & RETURN & RETURN & "PERMITTED MEMBER TYPES:" & RETURN & "Graphic members" & RETURN & RETURN & "PARAMETERS:" & RETURN & "* Go to which frame on mouseUp?"
end
on getBehaviorTooltip me
return "Use with graphic members. " & "Moves the playback head to the specified frame on mouseUp."
end
on mouseUp me
go(myTargetFrame)
end
on isOKToAttach me, aSpriteType, aSpriteNum
tisok = 0
if aSpriteType = #graphic then
tisok = 1
end if
return tisok
end
on getPropertyDescriptionList me
return [#myTargetFrame: [#comment: "Go to which frame on mouseUp?", #format: #integer, #default: the frame]]